type net/http.http2FrameHeader

36 uses

	net/http (current package)
		h2_bundle.go#L1523: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
		h2_bundle.go#L1548: type http2FrameHeader struct {
		h2_bundle.go#L1572: func (h http2FrameHeader) Header() http2FrameHeader { return h }
		h2_bundle.go#L1574: func (h http2FrameHeader) String() string {
		h2_bundle.go#L1582: func (h http2FrameHeader) writeDebug(buf *bytes.Buffer) {
		h2_bundle.go#L1609: func (h *http2FrameHeader) checkValid() {
		h2_bundle.go#L1615: func (h *http2FrameHeader) invalidate() { h.valid = false }
		h2_bundle.go#L1628: func http2ReadFrameHeader(r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1634: func http2readFrameHeader(buf []byte, r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1637: 		return http2FrameHeader{}, err
		h2_bundle.go#L1639: 	return http2FrameHeader{
		h2_bundle.go#L1654: 	Header() http2FrameHeader
		h2_bundle.go#L1981: 	http2FrameHeader
		h2_bundle.go#L1998: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2113: 	http2FrameHeader
		h2_bundle.go#L2117: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2252: 	http2FrameHeader
		h2_bundle.go#L2258: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2285: 	http2FrameHeader
		h2_bundle.go#L2300: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2328: 	http2FrameHeader
		h2_bundle.go#L2342: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2349: 	http2FrameHeader
		h2_bundle.go#L2353: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2396: 	http2FrameHeader
		h2_bundle.go#L2421: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2538: 	http2FrameHeader
		h2_bundle.go#L2563: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2608: 	http2FrameHeader
		h2_bundle.go#L2612: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2640: 	http2FrameHeader
		h2_bundle.go#L2644: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2681: 	http2FrameHeader
		h2_bundle.go#L2695: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L4324: 			http2FrameHeader: http2FrameHeader{valid: true},